home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20010306-20010921 / 000184_fdc@watsun.cc.columbia.edu_Fri May 25 09:55:40 EDT 2001.msg < prev    next >
Text File  |  2020-01-01  |  5KB  |  145 lines

  1. Article: 12487 of comp.protocols.kermit.misc
  2. Path: newsmaster.cc.columbia.edu!watsun.cc.columbia.edu!fdc
  3. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  4. Newsgroups: comp.protocols.kermit.misc
  5. Subject: Re: kermit-connection + kermit -s + error-count: NOT redialing-in?
  6. Date: 25 May 2001 13:55:42 GMT
  7. Organization: Columbia University
  8. Lines: 128
  9. Message-ID: <9elo8u$oa5$1@newsmaster.cc.columbia.edu>
  10. References: <9el6lu$441$1@panix2.panix.com>
  11. NNTP-Posting-Host: watsun.cc.columbia.edu
  12. X-Trace: newsmaster.cc.columbia.edu 990798942 24901 128.59.39.2 (25 May 2001 13:55:42 GMT)
  13. X-Complaints-To: postmaster@columbia.edu
  14. NNTP-Posting-Date: 25 May 2001 13:55:42 GMT
  15. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:12487
  16.  
  17. In article <9el6lu$441$1@panix2.panix.com>,
  18. David Combs <dkcombs@panix.com> wrote:
  19. : I have a sparc5/solaris7 with kermit; using kermit
  20. :
  21. What version?
  22.  
  23. : I dial into Panix.com (uses netbsd on PCs).
  24. : Fine.  I login, run tcsh, etc.
  25. : NOW, I want to download (to my sun) a big file.
  26. : Actually, due to problems with binary mode...
  27. :
  28. Why should there be a problem with binary mode?
  29. Kermit is perfectly capable of transferring binary
  30. files over any kind of connection, including
  31. 7-bits-with-parity, and/or through terminal servers
  32. or other devices that are not fully transparent.
  33. You might have to use one or both of the following
  34. commands:
  35.  
  36.   set parity space
  37.   set prefixing all
  38.  
  39. : ...I take the .tar.gz and uuencode it and
  40. : then (because of downloading problems on
  41. : this panix system I'm using, or due to the
  42. : interface I have incorrectly set up),
  43. : I "split -l1000  foo.tar.gz.uue zz",
  44. There should be no need for that either.  Kermit
  45. can transfer big files.  If you get disconnected in
  46. the middle, you can resume where you left off:
  47.  
  48.   resend <filename>
  49.  
  50. : resulting in maybe 30 zzaa zzab ... files to download.
  51. : I run kermit -s `cat zz*`  (actually, `cat t.nam`)
  52. : and depending on time of day or something I don't
  53. : understand, it will do several zz-files and then
  54. : get hung there, slowly incrementing the error-count.
  55. : NOTE that I am using kermit for the initial
  56. : connection itself, and then (on my shell acct
  57. : on panix) I run *their* kermit -s to download.
  58. What version of Kermit is on Panix?  And Panix is now
  59. running what OS?  NetBSD?  What version?
  60.  
  61. : I am not sure just what is going on, whether
  62. : there is one or two kermits running, or what.
  63. : BUT -- here is the problem:
  64. : That panix-kermmit -s; it starts generating ERRORS.
  65. What kind of errors?  What messages do you see?
  66.  
  67. : Slowly.
  68. : (Rarely, very rarely, after several errors, it
  69. : somehow cleans itself up and quickly finishes
  70. : the download.)
  71. : Anyway, now I want to STOP that (second) kermit (the
  72. : one I started on panix, with the -s `cat t.nam`).
  73. : Hell, I'd like to KILL that job -- and then
  74. : get back to the tcsh prompt ON PANIX, and
  75. : then rerun that kermit -s ... --
  76. : NOT TOUCHING THE KERMIT RUNNING ON MY SPARC5!
  77. : PROBLEM: that seems IMPOSSIBLE.
  78. There are many ways to to it:
  79.  
  80.  1. While the file transfer is in progress
  81.     and the file-transfer display is active
  82.     on your screen, just press the E key.
  83.     That should stop Kermit on the far end
  84.     and put the local Kermit back at the
  85.     prompt.
  86.  
  87.  2. If (1) doesn't work, stop the transfer with
  88.     Ctrl-C, then CONNECT, then type three (3)
  89.     Ctrl-C's in a row to stop the remote Kermit. 
  90.  
  91. : QUESTION: any way to set the limit on the errors...
  92. :
  93. Yes:
  94.  
  95.   set retry-limit 3  ; or other desired number
  96.  
  97. : ... and
  98. : if so, will THAT make the panix-kermit die but
  99. : keep me logged into panix, at a shell prompt there?
  100. The above command should do it.
  101.  
  102. : QUESTION: where in c-kermit book is the list
  103. : of "options" ("switches") -- can't find them
  104. : in the index.
  105. You mean command-line options?  In Appendix I, p.461.
  106.  
  107. The fact that you have so much trouble transferring
  108. files with Panix suggests that the modem and port on the
  109. Panix end are not configured right.  What is the Panix
  110. modem connected to?  A terminal server?  A serial port
  111. on the computer?  In any case, the port has to be
  112. configured for RTS/CTS hardware flow control, and so
  113. does the answering modem.  Also the modem has to be
  114. configured for answering -- no messages, no sensitivity
  115. to +++ or any other characters, 8 data bits no parity,
  116. and so on.  I realize you have no control over that.
  117.  
  118. If the Panix side does not have hardware flow control
  119. enabled, maybe you can work around it by using software
  120. flow control:
  121.  
  122.   set flow xon/xoff
  123.  
  124. There's a whole chapter in the book about solving
  125. file-transfer problems.  The nice thing about Kermit
  126. is that it has settings to let you work around almost
  127. any conceivable misconfiguration or connection problem.
  128.  
  129. - Frank
  130.